CODE 97. Valid Sudoku

版权声明:本文为博主原创文章,转载请注明出处,谢谢!

版权声明:本文为博主原创文章,转载请注明出处:http://blog.jerkybible.com/2013/10/30/2013-10-30-CODE 97 Valid Sudoku/

访问原文「CODE 97. Valid Sudoku

Determine if a Sudoku is valid, according to: Sudoku Puzzles - The Rules.
The Sudoku board could be partially filled, where empty cells are filled with the character '.'.

A partially filled sudoku which is valid.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
public boolean isValidSudoku(char[][] board) {
// IMPORTANT: Please reset any member data you declared, as
// the same Solution instance will be reused for each test case.
for (int i = 0; i < 9; i++) {
for (int j = 0; j < 9; j++) {
if (board[i][j] != '.') {
if (!check(board, i, j)) {
return false;
}
}
}
}
return true;
}
boolean check(char[][] board, int x, int y) {
for (int i = 0; i < 9; i++) {
if (i != y && board[x][i] == board[x][y]) {
return false;
}
}
for (int i = 0; i < 9; i++) {
if (i != x && board[i][y] == board[x][y]) {
return false;
}
}
for (int i = 3 * (x / 3); i < 3 * (x / 3 + 1); i++) {
for (int j = 3 * (y / 3); j < 3 * (y / 3 + 1); j++) {
if (i != x && j != y && board[i][j] == board[x][y]) {
return false;
}
}
}
return true;
}
Jerky Lu wechat
欢迎加入微信公众号